home *** CD-ROM | disk | FTP | other *** search
/ Giga Games 1 / Giga Games.iso / net / go / prog / nextgo23.taz / nextgo23 / NeXTGo / seed.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-02-09  |  238 b   |  15 lines

  1. #include "comment.header"
  2.  
  3. #include <sys/time.h>
  4.  
  5. void seed(int *i)
  6. /* start seed of random number generator for Sun */
  7.   {
  8.    struct timeval tp;
  9.    struct timezone tzp;
  10.  
  11.    gettimeofday(&tp, &tzp);
  12.    *i = tp.tv_usec;
  13. }  /* end seed */
  14.  
  15.